home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / aclocal / parted.m4 < prev    next >
Text File  |  2006-04-20  |  3KB  |  111 lines

  1. # library paths for libparted
  2. # written by Damien Genet <damien.genet@free.fr>
  3.  
  4. dnl Usage:
  5. dnl PARTED_CHECK_LIBPARTED([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
  6. dnl where MINIMUM-VERSION must be >= 1.2.8 and != 1.3.0
  7. dnl
  8. dnl Example:
  9. dnl PARTED_CHECK_LIBPARTED(1.2.8, , [AC_MSG_ERROR([*** libparted >= 1.2.8 not installed - please install first ***])])
  10. dnl
  11. dnl Adds the required libraries to $PARTED_LIBS and does an
  12. dnl AC_SUBST(PARTED_LIBS)
  13. dnl
  14.  
  15.  
  16. AC_DEFUN([PARTED_CHECK_LIBPARTED],
  17. [
  18. AC_REQUIRE([AC_CANONICAL_HOST])
  19.  
  20. dnl save LIBS
  21. saved_LIBS="$LIBS"
  22.  
  23. dnl Check for headers and library
  24. AC_CHECK_HEADER(parted/parted.h, ,
  25.         [AC_MSG_ERROR([<parted/parted.h> not found; install GNU/Parted])]
  26.         $3)
  27. AC_CHECK_LIB(uuid, uuid_generate, ,
  28.          [AC_MSG_ERROR([libuuid not found; install e2fsprogs available at http://web.mit.edu/tytso/www/linux/e2fsprogs.html])]
  29.              $3)
  30. AC_CHECK_LIB(parted,ped_device_read, ,
  31.              [AC_MSG_ERROR([libparted not found; install GNU/Parted available at http://www.gnu.org/software/parted/parted.html])]
  32.              $3)
  33.  
  34. case "$host_os" in
  35.     gnu*)    # The Hurd requires some special system libraries
  36.         # with very generic names, which is why we special
  37.         # case these tests.
  38.  
  39.         AC_CHECK_LIB(shouldbeinlibc,lcm, ,
  40.                     [AC_MSG_ERROR([libshouldbeinlibc not found; install the Hurd development libraries.])]
  41.                 $3)
  42.  
  43.         AC_CHECK_LIB(store,store_open, ,
  44.                     [AC_MSG_ERROR([libstore not found; install the Hurd development libraries.])]
  45.                 $3)
  46.         ;;
  47.     *)    ;;
  48. esac
  49.  
  50. AC_MSG_CHECKING(for libparted - version >= $1)
  51.  
  52. AC_TRY_LINK_FUNC(ped_get_version,,
  53.                  AC_MSG_RESULT(failed)
  54.                  AC_MSG_ERROR([*** libparted < 1.2.8 or == 1.3.0 can't execute test ***]))
  55.  
  56. dnl Get major, minor, and micro version from arg MINIMUM-VERSION
  57. parted_config_major_version=`echo $1 | \
  58.     sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
  59. parted_config_minor_version=`echo $1 | \
  60.     sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
  61. parted_config_micro_version=`echo $1 | \
  62.     sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
  63.  
  64. dnl Compare MINIMUM-VERSION with libparted version
  65. AC_TRY_RUN([
  66. #include <stdio.h>
  67. #include <stdlib.h>
  68. #include <parted/parted.h>
  69.  
  70. int main ()
  71. {
  72.     int        major, minor, micro;
  73.     const char    *version;    
  74.     
  75.     if ( !(version = ped_get_version ()) )
  76.         exit(1);
  77.     if (sscanf(version, "%d.%d.%d", &major, &minor, µ) != 3) {
  78.         printf("%s, bad version string\n", version);
  79.         exit(1);
  80.     }
  81.     
  82.     if ((major > $parted_config_major_version) ||
  83.        ((major == $parted_config_major_version) && (minor > $parted_config_minor_version)) ||
  84.        ((major == $parted_config_major_version) && (minor == $parted_config_minor_version) && (micro >= $parted_config_micro_version))) {
  85.         return 0;
  86.     } else {
  87.         printf("\n*** An old version of libparted (%s) was found.\n",
  88.                version);
  89.         printf("*** You need a version of libparted newer than %d.%d.%d.\n",
  90.             $parted_config_major_version, 
  91.             $parted_config_minor_version,
  92.             $parted_config_micro_version);
  93.         printf("*** You can get it at - ftp://ftp.gnu.org/gnu/parted/\n");
  94.         return 1;
  95.     }
  96. }
  97. ], 
  98.     AC_MSG_RESULT(yes),
  99.     AC_MSG_RESULT(no) ; $3,
  100.     [echo $ac_n "cross compiling; assumed OK... $ac_c"])
  101.  
  102. dnl restore orignial LIBS and set @PARTED_LIBS@
  103. PARTED_LIBS="$LIBS"
  104. LIBS="$saved_LIBS"
  105. AC_SUBST(PARTED_LIBS)
  106.  
  107. dnl Execute ACTION-IF-FOUND
  108. $2
  109.  
  110. ])
  111.